www.gusucode.com > 深度学习(asp)网址导航 v4.0.1 > 深度学习(asp)网址导航 v4.0.1\code\js\fastSelect.js

    //快速选择
function fastSelect(id)
{
   if(id == "f1")
   {
	   document.all.f1.style.display = "" ;
	   document.all.f2.style.display = "none";
   }
   else
   {
	   document.all.f1.style.display = "none" ;
	   document.all.f2.style.display = "" ;
   }
   return true ;
}
function jump(obj)
{
   url = obj.options[obj.options.selectedIndex].value ;
   window.open(url,"_blank");
   return true ;
}